home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
8174
/
8174.xpi
/
chrome
/
antbar.jar
/
content
/
lib
/
global.js
< prev
next >
Wrap
Text File
|
2009-12-30
|
661b
|
46 lines
//
// global.js
// firefox
//
// Created by Zak on 2008-06-12.
// Copyright 2008 Ant.com. All rights reserved.
//
/**
* Restart Firefox
*/
function re()
{
var appStartup = AntLib.CCSV("@mozilla.org/toolkit/app-startup;1", "nsIAppStartup");
appStartup.quit(appStartup.eAttemptQuit | appStartup.eRestart);
}
/**
* Inspect the current object
*/
top.inspect = function (obj)
{
var r = "";
try
{
for (i in obj)
{
try
{
r += i + " = " + obj[i] + "\n";
}
catch (e)
{
r += "ERROR WHILE GETTING ELEMENT \"" + i + "\"\n";
}
}
}
catch (e)
{
r += "ERROR CANNOT INPECT OBJECT\n";
}
return r;
}